globFlow

suspend fun globFlow(vararg patterns: String, followSymbolicLinks: Boolean = true, implicitDescendants: Boolean = true, omitBrokenSymbolicLinks: Boolean = true, matchDirectories: Boolean = true): <ERROR CLASS><Path>
suspend fun globFlow(patterns: List<String>, followSymbolicLinks: Boolean = true, implicitDescendants: Boolean = true, omitBrokenSymbolicLinks: Boolean = true, matchDirectories: Boolean = true): <ERROR CLASS><Path>

Get all files matching patterns, asynchronously. Good for very large globs.

*, ?, [...], and ** are supported in patterns. ~ will be expanded. Patterns that begin with # are ignored. Patterns that begin with ! exclude matching files. Characters can be escaped by wrapping them in [], or by using \ on non-Windows systems.

See @actions/glob's docs

Parameters

patterns

patterns to check

followSymbolicLinks

whether to follow symbolic links when collecting files

implicitDescendants

whether to implicitly include all descendants of matching files

omitBrokenSymbolicLinks

ignore broken symbolic links

matchDirectories

whether to include directories in the result